DeployLX Software Protection System

Feature Limit

The Feature Limit is an extendable limit that identifies named product features. The features can be enabled when generating a serial number, or later with an extension code.

How is the Feature Limit Enforced?

The feature limit is allways valid. The state of the enabled features can be used in code to enable or disable program features. Or different validation rules can be applied using a Feature Filter Filter limit.

Checking the Feature State in Code

_license = SecureLicenseManager.Validate( Me, Nothing, Nothing )

If _license.AreFeaturesEnabled( "Print" ) Then
  _printButton.Enabled = True
End If
_license = SecureLicenseManager.Validate( this, null, null );

if( _license.AreFeaturesEnabled( "Print" ) )
{
  _printButton.Enabled = true;
}

See the AreFeaturesEnabled Method for details.

Enabling a Features

Features do not have to be enabled in the license. Instead they can be enabled later on the customer's machine when they enter a serial number or by entering an extension code.

  1. Open the license file in the Advanced License Editor.
  2. Select the license edition contianing the Feature limit.
  3. Select Generate Code | Generate Serial Number from the License Tab to open the Generate Serial Number form.
  4. Select the Feature limit in one of the Initialize... groups.
  5. Select Pick Features.
  6. Select the features to enable and select OK to close the form.
  7. Select Generate to create the serial numbers.
  1. Open the license file in the Advanced License Editor.
  2. Select the license edition contianing the Feature limit.
  3. Select Generate Code | Generate Extension Code from the License Tab to open the Generate Extension Code form.
  4. Select the Feature limit in the Extension group.
  5. Select Pick Features.
  6. Select the features to enable and select OK to close the form.
  7. Select Generate to create the extension.

Customizing The Forms

The forms may be customized or completely replaced to fit your specific application style.

Customize the colors and icons of the forms by selecting the Theme button from the License Tab on the Ribbon.

See the How to Create a Custom Form topic for details on replacing or customizing the form.

See Also